home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{FAE1731F-430A-11D4-B183-D1B9690DF016}#22.0#0"; "FORMINDIVIDUAL.OCX"
- Begin VB.Form Startup
- BorderStyle = 0 'None
- Caption = "Form1"
- ClientHeight = 1875
- ClientLeft = 0
- ClientTop = 0
- ClientWidth = 3720
- LinkTopic = "Form1"
- Picture = "Form1.frx":0000
- ScaleHeight = 1875
- ScaleWidth = 3720
- ShowInTaskbar = 0 'False
- StartUpPosition = 2 'CenterScreen
- Begin FormIndividual.IndForm IndForm1
- Left = 240
- Top = 1200
- _ExtentX = 873
- _ExtentY = 873
- End
- Begin VB.Label Label1
- BackStyle = 0 'Transparent
- Height = 255
- Left = 1440
- TabIndex = 0
- Top = 1440
- Width = 855
- End
- Begin VB.Image Image1
- Height = 1875
- Left = 0
- Picture = "Form1.frx":16B8A
- Top = 0
- Width = 3705
- End
- Attribute VB_Name = "Startup"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Dim formen As Variant
- Private Sub Form_Load()
- formen = IndForm1.Bitmap2Form(Me.Picture, vbBlack)
- End Sub
- Private Sub Image1_MouseDown(Button As Integer, Shift As Integer, x As Single, y As Single)
- FormDrag Me
- End Sub
- Private Sub Form_MouseDown(Button As Integer, Shift As Integer, x As Single, y As Single)
- FormDrag Me
- End Sub
- Private Sub Label1_Click()
- Me.Hide
- main.Show
- End Sub
-